home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / utilities / heartbeat.lha / HeartBeat / cload_file.h next >
Encoding:
C/C++ Source or Header  |  1992-04-07  |  299 b   |  10 lines

  1. // Include Header to gain access to 'C' version of load_file()
  2.  
  3. struct FileCache {
  4.     char        *filebuf;        // ptr to cached file
  5.     unsigned int bufsize;        // # of bytes in cache (incl padding)
  6.     char        *filename;        // name of file in this cache
  7. };
  8.  
  9. IMPORT BOOL load_file( char * fname, struct FileCache * fc);
  10.